home *** CD-ROM | disk | FTP | other *** search
- /* Hey, you broke my while loop! */
- using System;
-
- namespace Chapter2 {
- class Class1 {
- static void Main() {
- string Quit = "no";
-
- while (Quit != "yes") {
- break; // breaks loop
- Console.Write ("\n Would you like to end this loop? ");
- Quit = Console.ReadLine ();
- }
-
- Console.WriteLine ("Program complete!\n");
- }
- }
- }
-